home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-2.iso / extra_2 / nadir11.zip / LIST.N < prev    next >
Text File  |  1995-11-08  |  234b  |  10 lines

  1. Define List(table) {
  2.     Print("Beginning of List ", table, " ......\n");
  3.     while (name = next([table]^[name])) {
  4.         Print(name, " \t= ", [table]^[name], "\n");
  5.     }
  6.     Print("End of List ", table, " ......\n");
  7. }
  8.  
  9.  
  10.